Skip to main content
GET
/
api
/
integrations
/
[provider]
/
callback
GET /api/integrations/[provider]/callback
curl --request GET \
  --url 'https://api.example.com/api/integrations/[provider]/callback'
  • GET /api/integrations/[provider]/callback * OAuth callback handler. Exchanges the authorization code for tokens and stores them in the database.

Response

Returns unknown on success.

Example

curl -X GET https://your-domain.com/api/integrations/[provider]/callback \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN"